.kalendar {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
   }
   
/* Add this to your global CSS */
* {
    box-sizing: border-box;
  }
  
html {
    overflow-x: hidden;
}
body {
    font-family: Arial, sans-serif;
    background-color: #140b0b;
    color: #fff;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}
 body {
    overflow-x: hidden;
}
main {
    width: 100%;
    overflow-x: hidden;
}

.scrolled {
    background-color: #140b0b;
}
/* Section styles */
.section {
    padding: 40px;
    background-color: #140b0b;
    width: 100%;
}
.rotate {
    transform: rotate(180deg);
}
.section.dark {
    background-color: #2b2323;
    
}

.content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

h2 {
    color: #8e0c24;
    margin-bottom: 10px;
    word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    width: 50%;
}
.prices .container {
    display: flex;
    justify-content: space-around;
    width: 70%;
}
.prices .container p{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content .text{
    width: 50%;
}

.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    clip-path: none;
    width: 100%;
    filter: brightness(70%);

}

.hero h1 {
    font-size: 3em;
    padding: 10px;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #111;
    padding: 10px;
    text-align: center;
}


/* Form container */
#reservation {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    color: #f0f0f0;
    max-width: 1280px;
}

#reservation select, 
#reservation input {
    width: 100%;
    padding: 0.65%;
    margin-bottom: 15px;
    max-width: 31.3%;
    border: none;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #ffffff;
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
/* Scrollbar styling */
select::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

select::-webkit-scrollbar-thumb {
  background-color: #140b0b; /* Scroll thumb color */
  border-radius: 10px;
}

select::-webkit-scrollbar-track {
  background-color: #3a3a3a ; /* Scroll track color */
}

#reservation .input {
    max-width: 30%;
}
#reservation select:focus, 
#reservation input:focus {
    outline: none;
    border: 1px solid #00ff88;

}

#reservation input::placeholder {
    color: #bbbbbb;
}

#reservation button {
    width: 100%;
    padding: 12px;
    background-color: #00ff88;
    color: #1c1c1c;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#reservation button:hover {
    background-color: #00e67a;
}

/* Error input validation */
input:invalid {
    border: 2px solid #f44336;
}

input:invalid:focus {
    border: 2px solid #f44336;
}

@media (max-width: 800px) {
    #reservation select, 
    #reservation input {
        width: 100%;
        padding: 5px;
        margin-bottom: 15px;
        max-width: 49%;
        border: none;
        border-radius: 5px;
        background-color: #3a3a3a;
        color: #ffffff;
        font-size: 1em;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    #reservation .input {
        max-width: 47.27%;
    }
    .content {
        flex-direction: column;
    justify-content: center;
    align-items: center;
    }
    .content .text {
        width: 90%;
        text-align: center;
    }
    .content .prices {
        width: 100%;
    }
    .menu {
        background-color: #140b0b;
    }
    .hero {
        height: 70vh;
    }
}
/* Mobile responsive adjustments */
@media (max-width: 600px) {
    #reservation {
        max-width: 90%;
        padding: 15px;
    }
    .section{
        padding: 20px;}
}
@media (max-width: 450px) {
        #reservation .input {
        max-width: 45.9%;
    }
}
